home *** CD-ROM | disk | FTP | other *** search
- // AssocTableCell.h
- //
- // Free software created 1 Feb 1992
- // by Paul Burchard <burchard@math.utah.edu>.
-
- #import <appkit/TextFieldCell.h>
-
- @interface AssocTableCell : TextFieldCell
- {
- id assocField;
- float assocSize;
- float assocGray;
- }
-
- - initTextCell:(const char *)aString;
- - free;
- - setBackgroundColor:(NXColor)Colorvalue;
- - setBackgroundGray:(float)value;
- - setBackgroundTransparent:(BOOL)flag;
- - setTextAttributes:textObj;
- - drawInside:(const NXRect *)cellFrame inView:controlView;
- - setAssocStringValue:(const char *)aValue;
- - (const char *)assocStringValue;
- - setAssocSize:(float)aValue;
- - (float)assocSize;
- - setAssocGray:(float)aValue;
- - (float)assocGray;
-
- @end